home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-10-16 | 1.0 KB | 36 lines | [TEXT/GEOL] |
- Item 1167045 16-Oct-89 17:02
-
- From: D1037 Jasik Designs, Steve Jasik,PRT
-
- To: D2086 Efficient Field Svc, C Faith,PRT
-
- cc: MACAPP.TECH$ MACAPP Tech
-
- Sub: Re: How to detect potential…
-
- Curtis,
-
- If you mean classes, then all the info is arond at run time.
- The variable pOrderedClassids is a handle to the table of ordered class ID's.
-
- The Debugger prints them out via the following code which is similar to the
- code in MacApp:
-
- for i := 1 to n_classes do begin { display class's in Lexigraphic order }
- clas_ID := pOrderedClass^^[i];
- GetClassNameFromID(clas_ID,clName);
- wrt_hex(clas_ID,-3); wrt_str(' '); wrt_str(clName);
- dump_WLine;
- j := GetSuperclassID(clas_ID);
- if j <> 0 then begin
- GetClassNameFromID(j,clName);
- wst := ' '; wrt_str(clName);
- dump_WLine;
- end;
-
- It is fairly easy to build the assoicated graph as each class only has one
- superclass.
-
- Steve
-
-